home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Select: Multimedia 20
/
The Best of Select: Multimedia 20.iso
/
readers
/
autowise
/
go.bat
< prev
next >
Wrap
DOS Batch File
|
1997-04-15
|
2KB
|
122 lines
@echo off
cls
echo Checking hardware...
:checkdos
dir c:\dos /b /-l /-p /-w /a /-s | find "CHOICE.COM" > nul
if errorlevel 1 goto dostoolow
:checkansi
mem /c | find "ANSI" > nul
if errorlevel 1 goto ansinotdetected
:checkvga
mode con columns=80 lines=50
if errorlevel 1 goto vganotdetected
:mainmenu
mode con columns=80 lines=50
echo
Autowise-menu V1.1
echo
Programmed by Strobodroid of Autowise Productions
echo
From HOLLAND!B
echo
Main menu
echo ---------
echo [1]
Information on Autowise Productions (AUTOWISE.ANS)
echo [2]
View drawings with SVGA
echo [3]
Play modules with Scream Tracker
echo [4]
View texts with LIST
echo [5]
Run programs with QBASIC
echo [6]
Exit menu
B
choice /c123456 /n Your choice?
if errorlevel 6 goto end
if errorlevel 5 goto programs
if errorlevel 4 goto text
if errorlevel 3 goto modules
if errorlevel 2 goto drawings
:info
echo
type autowise.ans | more
pause
goto mainmenu
:drawings
svga /a /r /4
goto mainmenu
:modules
st3 -x
goto mainmenu
:text
list /w-
goto mainmenu
:programs
qbasic
goto mainmenu
:dostoolow
echo I can understand that some people don't have Win95 for practical reasons,
echo but we all should at least have DOS 6.0 :O)
goto errorend
:vganotdetected
echo We can't all afford a Pentium but VGA would be nice, now wouldn't it? :O)
goto errorend
:ansinotdetected
cls
echo Autowise-menu V1.1
echo Programmed by Strobodroid of Autowise Productions
echo From HOLLAND!
echo Monochrome mode (Load ANSI.SYS if you are bored by living in darkness :O)
echo Main menu
echo ---------
echo [1] Information on Autowise Productions (AUTOWISE.TXT)
echo [2] View drawings with SVGA
echo [3] Play modules with Scream Tracker
echo [4] View texts with LIST
echo [5] Run programs with QBASIC
echo [6] Exit menu
choice /c123456 /n Your choice?
if errorlevel 6 goto successend
if errorlevel 5 goto program2
if errorlevel 4 goto text2
if errorlevel 3 goto modules2
if errorlevel 2 goto drawing2
:noansiinfo
list autowise.txt
goto ansinotdetected
:drawing2
svga /a /r /4
goto ansinotdetected
:modules2
st3 -x
goto ansinotdetected
:text2
list /w-
goto ansinotdetected
:program2
qbasic
goto ansinotdetected
:end
echo
goto successend
:errorend
pause
:successend
@cd \
@menu